if owner.Character.Head:FindFirstChild("TitleGUI") == nil then local Billgui = Instance.new("BillboardGui", owner.Character.Head) local Title = Instance.new("TextLabel", Billgui) Billgui.Adornee = Billgui.Parent Billgui.Active = true Billgui.Name = "TitleGUI" Title.Name = "PlayerTitle" Billgui.Size = UDim2.new(0, 625, 0, 125) Title.Size = Billgui.Size Billgui.MaxDistance = 75 Billgui.StudsOffset += Vector3.new(0, 1.75, 0) Title.BackgroundTransparency = 1 Title.FontFace = Font.new("rbxasset://fonts/families/ComicNeueAngular.json", Enum.FontWeight.Regular, Enum.FontStyle.Italic) Title.TextColor3 = Color3.new(0,0,0) Title.TextSize = 45 Title.TextStrokeTransparency = 0 if owner.Character:FindFirstChild("Torso") then Title.TextStrokeColor3 = owner.Character.Torso.Color elseif owner.Character:FindFirstChild("UpperTorso") then Title.TextStrokeColor3 = owner.Character.UpperTorso.Color end Title.Text = owner.Character.Name owner.Character.Humanoid.DisplayDistanceType = "None" end